GooglePlus

Adobe AIR native extension

Google Plus AIR Native Extension

The extension is available here: com.distriqt.GooglePlus

Documentation



Setup your Google Project

1. Google Developers Console project
2. Android Certificate Fingerprint
3. Google Identity Options


Setup the Extension

1. Add the Extension
2. Initialise


Usage

1. Setup
2. Signing In/Out
3. Disconnect
4. Sharing a Post


External Links

- ASDocs

Initialising the Extension

You should perform this once in your application. This initialises the extension using your application key. Note you should always check whether the extension is supported before making calls. This allows you to react to whether the functionality is available on the device.

try
{
	GooglePlus.init( APPLICATION_KEY );
	if (GooglePlus.isSupported)
	{
		//	Functionality here
	}
}
catch (e:Error)
{
	trace( e );
}

You generate your application keys here: /user/applications

If you have any issues with the application key, check this FAQ